home *** CD-ROM | disk | FTP | other *** search
- { iaodemo.pas -- Demonstrate using InAndOut DLL }
-
- program IAODemo;
-
- uses WinTypes, WinProcs, WinCrt, IAOUnit;
-
- var
-
- Handle: THandle;
-
- begin
- Handle := LoadLibrary('INANDOUT.DLL');
- if Handle < 32 then
- Writeln('*** Error loading STRDLL.DLL library file ***')
- else begin
- Writeln('In and out demonstration');
- Write('Press Enter to end program...');
- Readln;
- FreeLibrary(Handle)
- end;
- Writeln('Press Alt+F4 to close window...')
- end.
-
-
- {--------------------------------------------------------------
- Copyright (c) 1991 by Tom Swan. All rights reserved.
- Revision 1.00 Date: 5/25/1991
- ---------------------------------------------------------------}
-